namespace examplegui { partial class Form1 { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.txtInput1 = new System.Windows.Forms.TextBox(); this.txtInput2 = new System.Windows.Forms.TextBox(); this.btnCalculate = new System.Windows.Forms.Button(); this.lblOutput = new System.Windows.Forms.Label(); this.SuspendLayout(); // // txtInput1 // this.txtInput1.Location = new System.Drawing.Point(79, 26); this.txtInput1.Name = "txtInput1"; this.txtInput1.Size = new System.Drawing.Size(100, 20); this.txtInput1.TabIndex = 0; // // txtInput2 // this.txtInput2.Location = new System.Drawing.Point(79, 52); this.txtInput2.Name = "txtInput2"; this.txtInput2.Size = new System.Drawing.Size(100, 20); this.txtInput2.TabIndex = 1; // // btnCalculate // this.btnCalculate.Location = new System.Drawing.Point(79, 78); this.btnCalculate.Name = "btnCalculate"; this.btnCalculate.Size = new System.Drawing.Size(75, 23); this.btnCalculate.TabIndex = 2; this.btnCalculate.Text = "Calculate"; this.btnCalculate.UseVisualStyleBackColor = true; this.btnCalculate.Click += new System.EventHandler(this.btnCalculate_Click); // // lblOutput // this.lblOutput.AutoSize = true; this.lblOutput.Location = new System.Drawing.Point(79, 108); this.lblOutput.Name = "lblOutput"; this.lblOutput.Size = new System.Drawing.Size(0, 13); this.lblOutput.TabIndex = 3; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(292, 273); this.Controls.Add(this.lblOutput); this.Controls.Add(this.btnCalculate); this.Controls.Add(this.txtInput2); this.Controls.Add(this.txtInput1); this.Name = "Form1"; this.Text = "Form1"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TextBox txtInput1; private System.Windows.Forms.TextBox txtInput2; private System.Windows.Forms.Button btnCalculate; private System.Windows.Forms.Label lblOutput; } }